| Server IP : 162.243.168.218 / Your IP : 216.73.216.85 Web Server : Apache System : Linux ISPCONFIG-WEB-EMPRESAS 5.15.0-174-generic #184-Ubuntu SMP Fri Mar 13 18:41:50 UTC 2026 x86_64 User : web23 ( 5020) PHP Version : 8.3.32 Disable Function : NONE MySQL : OFF | cURL : ON | WGET : OFF | Perl : OFF | Python : OFF | Sudo : OFF | Pkexec : OFF Directory : /var/www/clients/client3/web23/web/wp-content/plugins/elementor/includes/widgets/ |
Upload File : |
<?php
namespace Elementor;
if ( ! defined( 'ABSPATH' ) ) {
exit; // Exit if accessed directly.
}
/**
* @deprecated will be removed in version 3.24
*/
class Widget_Share_Buttons extends Widget_Base {
private static $supported_networks = [
'facebook',
'x-twitter',
'twitter',
'linkedin',
'pinterest',
'threads',
'reddit',
'vk',
'odnoklassniki',
'tumblr',
'digg',
'skype',
'stumbleupon',
'mix',
'telegram',
'pocket',
'xing',
'whatsapp',
'email',
'print',
];
/**
* @deprecated will be removed in version 3.24
*/
public function get_name() {
return 'share-buttons-dummy';
}
/**
* @deprecated will be removed in version 3.24
*/
public function get_title() {
return 'share-buttons-dummy';
}
/**
* @deprecated will be removed in version 3.24
*/
public function show_in_panel(): bool {
return false;
}
/**
* @deprecated will be removed in version 3.24
*/
public static function get_supported_networks(): array {
return self::$supported_networks;
}
}